With lots of help, I have gotten this android class activity down to only one error. Eclipse aks for me to add ")" ,"}", and ";" why though?

Posted by AndroidNewb on Stack Overflow See other posts from Stack Overflow or by AndroidNewb
Published on 2010-12-29T22:18:17Z Indexed on 2010/12/29 22:54 UTC
Read the original article Hit count: 169

Filed under:
package com.android.drinksonme;

import android.app.Activity;

import android.content.Intent;

import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; import android.widget.TextView;

public class Screen2 extends Activity {

// Declare our Views, so we can access them later
private EditText etUsername;
private EditText etPassword;
private Button btnLogin;
private Button btnSignUp;
private TextView lblResult;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    // Get the EditText and Button References
            etUsername = (EditText)findViewById(R.id.username);
            etPassword = (EditText)findViewById(R.id.password);
            btnLogin = (Button)findViewById(R.id.login_button);
            btnSignUp = (Button)findViewById(R.id.signup_button);
            lblResult = (TextView)findViewById(R.id.result);


                   btnLogin.setOnClickListener(new OnClickListener () { 
                        String username = etUsername.getText().toString();
                        String password = etPassword.getText().toString();
                       public void onClick(View v){
                       if(username.equals("test") && password.equals("test")){
                           Intent i = new Intent(Screen2.this, DrinksTwitter.class);
                           startActivity(i);} 
                       else
                           lblResult.setText("Invalid username or password."); } 

                     /*  final Intent k = new Intent(Screen2.this, SignUp.class);
                       btnSignUp.setOnClickListener(new OnClickListener() {
                           public void onClick(View v) { 
                               startActivity(k);
                           }*/ 
                       }
                   );
                }                   
               }

© Stack Overflow or respective owner

Related posts about android